home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
editor
/
assist17.lha
/
REXX
/
intro.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1992-09-02
|
1KB
|
37 lines
/* Intro.REXX
Load the intro file and go to
the node intro...(hm!)
Written by Mark 'Force' Papadakis gsa50@cs.teiher.gr */
Say "AREXX script for Assist; Loads my intro.help file and view ALL the nodes.."
Say "Quite simple, really! AREXX-Power2ThePeople!!"
OPTIONS RESULTS
/* If Assist is not ready yet, just load it! */
if ~Show('P','ASSIST.1') then do
Say "Loading Assist.."
Address command "run > nil: AUX_PRG:Assist"
Say "Assist just loaded!"
Say "Please, wait until the port is ready!"
Address command "WaitForPort ASSIST.1"
Say "AREXX port installed!"
Say "=- Select {CANCEL} from filerequester to continue! -="
end
ADDRESS 'ASSIST.1'
Say "Loading intro file.."
/* If Assist was just loaded, you will have to select cancel
in the filerequester to continue */
Load 'AUX_PRG:Intro.help' /* Load the file */
GoTo 'Main' /* Jump to the node MAIN */
/*See all nodes! */
ReDisplay /* Just to ensure the display is ok */
DO i = 1 to 27 /* WOW! */
NEXT /* Take a look at the next node */
END I
/* Hey, i have to introduce myself, dont you think guys? :-) */
About
Say "That was it folks!"
Exit